home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Input / OSSMidiIn.h < prev    next >
C/C++ Source or Header  |  2005-03-14  |  1KB  |  49 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   OSSMidiIn.h - Midi input for Open Sound System
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #ifndef OSS_MIDI_IN_H
  24. #define OSS_MIDI_IN_H
  25.  
  26. #include "MidiIn.h"
  27.  
  28. class OSSMidiIn:public MidiIn{
  29.     public:
  30.     OSSMidiIn();
  31.     ~OSSMidiIn();
  32.     unsigned char getmidibyte();
  33.     unsigned char readbyte();
  34.  
  35.     //Midi parser
  36.     void getmidicmd(MidiCmdType &cmdtype,unsigned char &cmdchan,int *cmdparams);
  37.     unsigned char cmdtype;//the Message Type (noteon,noteof,sysex..)
  38.     unsigned char cmdchan;//the channel number
  39.  
  40.     private:
  41.     int midi_handle;
  42.     unsigned char lastmidicmd;//last byte (>=80) received from the Midi
  43.  
  44. };
  45.  
  46.  
  47. #endif
  48.  
  49.